03. Java Basic APIs - String
035ND C01 L01 A01 MATH, DATE, STRING
Java math, date, string and character are really basic yet useful java APIs.
You should expect to see lots of these in this class. If you are coming from different programming language, you should be OK to learn them quickly.
In this class, I am not going to teach them one by one, please take a look at the API documents yourself. And you should have no problem to complete the quizzes or the coding exercises.
Resources:
Math: https://docs.oracle.com/javase/8/docs/api/java/lang/Math.html
Date: https://docs.oracle.com/javase/8/docs/api/java/util/Date.html
String: https://docs.oracle.com/javase/8/docs/api/java/lang/String.html
Character: https://docs.oracle.com/javase/8/docs/api/java/lang/Character.html
Here some quizzes to get us up to speed!
Math, Date, String, Character Quiz 1
SOLUTION:
Math.abs(-8.0)Math, Date, String, Character Quiz 2
SOLUTION:
Math.max(c, Math.abs(Math.min(-a, -b)))Math, Date, String, Character Quiz 3
SOLUTION:
Wed Jun 26 2019 13:02:34Math, Date, String, Character Quiz 4
SOLUTION:
classMath, Date, String, Character Quiz5